strtoimax -> strtoumax, fixing a typo.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 21 Apr 2011 19:40:13 +0000 (12:40 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 21 Apr 2011 19:40:13 +0000 (12:40 -0700)
src/ChangeLog

index 5053c3c1b4c543cd85652d1e4f9b0ad9d062c072..893bfa621dcf4d612cf8a43a533247ab0f959d95 100644 (file)
@@ -11,7 +11,7 @@
        parsing non-base-10 numbers, as the documentation specifies.
        * lisp.h (string_to_number): New decl, replacing ...
        (isfloat_string): Remove.
-       * lread.c: Include <inttypes.h>, for uintmax_t and strtoimax.
+       * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
        (read1): Do not accept +. and -. as integers; this
        appears to have been a coding error.  Similarly, do not accept
        strings like +-1e0 as floating point numbers.  Do not report
@@ -26,7 +26,7 @@
        (string_to_number): New function, replacing isfloat_string.
        This function checks for valid syntax and produces the resulting
        Lisp float number too.  Rework it so that string-to-number
-       no longer mishandles examples like "1.0e+".  Use strtoimax,
+       no longer mishandles examples like "1.0e+".  Use strtoumax,
        so that overflow for non-base-10 numbers is reported only when
        there's no portable and simple way to convert to floating point.